crypto/cipher.ofb.out (field)

14 uses

	crypto/cipher (current package)
		ofb.go#L14: 	out     []byte
		ofb.go#L33: 		out:     make([]byte, 0, bufSize),
		ofb.go#L43: 	remain := len(x.out) - x.outUsed
		ofb.go#L47: 	copy(x.out, x.out[x.outUsed:])
		ofb.go#L48: 	x.out = x.out[:cap(x.out)]
		ofb.go#L49: 	for remain < len(x.out)-bs {
		ofb.go#L51: 		copy(x.out[remain:], x.cipher)
		ofb.go#L54: 	x.out = x.out[:remain]
		ofb.go#L66: 		if x.outUsed >= len(x.out)-x.b.BlockSize() {
		ofb.go#L69: 		n := xorBytes(dst, src, x.out[x.outUsed:])